This forum is closed to new posts and
responses. The content has been migrated to the Digital Solutions Community. Please join us there for new content as well as this content. For customer support, please visit the official HCL customer support channels below:
RE: Text in body field in email ~Chris Revelusonobu 8.Dec.03 06:17 PM a Web browser Notes Client 6.0.1Windows XP
Here is the code....
Set memo=db.CreateDocument
Dim newitem As notesrichtextitem
With memo
.EncryptOnSend = False
.form ="Memo"
.sendto="abc@cc.com"
.BlindCopyTo = adoc.BlindCopyTo
End With
Set newitem= New notesrichtextitem(memo, "Body")
Set citem = adoc.GetFirstItem("Body")
Call newitem.AppendRTItem( citem )
Call memo.Send(False)